home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / bash / bash_110 / mint / glob.zoo / glob / Makefile.orig < prev    next >
Encoding:
Makefile  |  1991-11-05  |  288 b   |  15 lines

  1. # Makefile for glob source is in -*- text -*- mode.
  2.  
  3. CFLAGS = -g
  4. RM = rm -f
  5.  
  6. libglob.a: glob.o tilde.o
  7.     $(RM) -f $@
  8.     $(AR) clq $@ glob.o tilde.o
  9.     -if [ -f "$(RANLIB)" ]; then $(RANLIB) libglob.a; fi
  10.  
  11. tilde-test: tilde.c
  12.     $(CC) $(CFLAGS) -o tilde-test -DTEST tilde.c
  13. clean:
  14.     $(RM) *.o *.a
  15.